home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / include / attr / libattr.h < prev    next >
C/C++ Source or Header  |  2006-01-09  |  566b  |  25 lines

  1. #ifndef __LIBATTR_H
  2. #define __LIBATTR_H
  3.  
  4. #ifdef __cplusplus
  5. extern "C" {
  6. #endif
  7.  
  8. struct error_context;
  9.  
  10. extern int attr_copy_file (const char *, const char *,
  11.                int (*) (const char *, struct error_context *),
  12.                struct error_context *);
  13. extern int attr_copy_fd (const char *, int, const char *, int,
  14.              int (*) (const char *, struct error_context *),
  15.              struct error_context *);
  16.  
  17. /* The default check function used by attr_copy_{fd,file}. */
  18. extern int attr_copy_check_permissions(const char *, struct error_context *);
  19.  
  20. #ifdef __cplusplus
  21. }
  22. #endif
  23.  
  24. #endif
  25.